home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Splash
- Caption = "Welcome"
- ClientHeight = 3255
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3255
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Enter"
- BeginProperty Font
- Name = "Comic Sans MS"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 3960
- Style = 1 'Graphical
- TabIndex = 1
- Top = 2880
- Width = 735
- End
- Begin VB.Timer Timer2
- Interval = 2000
- Left = 120
- Top = 2760
- End
- Begin VB.Timer Timer1
- Interval = 10
- Left = 120
- Top = 2760
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- AutoSize = -1 'True
- BackColor = &H00C0C0FF&
- Caption = "Scott Wellbrock"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 24
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 555
- Left = 600
- TabIndex = 0
- Top = 1320
- Width = 3375
- End
- Attribute VB_Name = "Splash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Graphics.Show
- Unload Splash
- End Sub
- Private Sub timer1_timer()
- Dim counter, drawcirc
- drawcirc = 0
- For counter = 1 To 100 Step 1
- Dim x, y, radius
- Dim r, g, b
- r = Rnd * 255
- g = Rnd * 255
- b = Rnd * 255
- x = Splash.ScaleWidth / 2
- y = Splash.ScaleHeight / 2
- Splash.DrawStyle = drawcirc
- Splash.Circle (x, y), Rnd * 3000, RGB(r, g, b)
- Next
- End Sub
- Private Sub timer2_timer()
- Label1.BackColor = Val(Label1.BackColor) * Rnd
- Label1.Caption = "Graphics and More"
- Label1.Refresh
- End Sub
-